6
6
.
.
6
6
V
V
i
i
e
e
w
w
s
s
-
-
V
V
i
i
s
s
i
i
b
b
l
l
e
e
Button
Button ("Button") { print("Button was pressed") }
Button (action: { print("Button was pressed") } ) { Text("Button") }
Image
Image(systemName: "star.circle.fill").font(.system(size: 200)).foregroundColor(.green)
Image("leaves")
Image("Table")
.resizable()
.aspectRatio(contentMode: .fill)
.frame(width: 300, height:300).border(Color.blue, width: 2)
.clipped()
Text
Text("First line.\nSecond line.")
TextField
TextField("Enter username...", text: $username)